(v1) News App
Layout
Criteria | Meet Specification |
---|---|
Main Screen |
App contains a main screen which displays multiple news stories |
List Item Contents |
Each list item on the main screen displays relevant text and information about the story. Required fields include the title of the article and the name of the section that it belongs to. If available, author name and date published should be included. Please note not all responses will contain these pieces of data, but it is required to include them if they are present. |
Layout Best Practices |
The code adheres to all of the following best practices:
|
Functionality
Criteria | Meet Specification |
---|---|
Main Screen Updates |
Stories shown on the main screen update properly whenever new news data is fetched from the API. |
Errors |
The code runs without errors. |
Story Intents |
Clicking on a story opens the story in the user’s browser. |
API Query |
App queries the content.guardianapis.com api to fetch news stories related to the topic chosen by the student, using either the ‘test’ api key or the student’s key. |
Use of Loaders |
Networking operations are done using a Loader rather than an AsyncTask. |
External Libraries and Packages |
The intent of this project is to give you practice writing raw Java code using the necessary classes provided by the Android framework; therefore, the use of external libraries for the core functionality will not be permitted to complete this project. |
Code Readability
Criteria | Meet Specification |
---|---|
Readability |
Code is easily readable such that a fellow programmer can understand the purpose of the app. |
Naming Conventions |
All variables, methods, and resource IDs are descriptively named such that another developer reading the code can easily understand their function. |
Formatting |
The code is properly formatted i.e. there are no unnecessary blank lines; there are no unused variables or methods; there is no commented out code. |